home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / adfs_fs_i.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  552b  |  25 lines

  1. /*
  2.  *  linux/include/linux/adfs_fs_i.h
  3.  *
  4.  * Copyright (C) 1997 Russell King
  5.  */
  6.  
  7. #ifndef _ADFS_FS_I
  8. #define _ADFS_FS_I
  9.  
  10. /*
  11.  * adfs file system inode data in memory
  12.  */
  13. struct adfs_inode_info {
  14.     loff_t        mmu_private;
  15.     unsigned long    parent_id;    /* object id of parent        */
  16.     __u32        loadaddr;    /* RISC OS load address        */
  17.     __u32        execaddr;    /* RISC OS exec address        */
  18.     unsigned int    filetype;    /* RISC OS file type        */
  19.     unsigned int    attr;        /* RISC OS permissions        */
  20.     unsigned int    stamped:1;    /* RISC OS file has date/time    */
  21.     struct inode vfs_inode;
  22. };
  23.  
  24. #endif
  25.